home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / COMPILER / SATHER / !Sather / Library / Base / config / bool < prev    next >
Encoding:
Text File  |  1996-07-18  |  293 b   |  20 lines

  1. #ifndef BOOL_CONFIG
  2. #define BOOL_CONFIG
  3.  
  4. #ifdef PP
  5. #undef PP
  6. #endif
  7.  
  8. #ifdef VSTD
  9. #undef VSTD
  10. #endif
  11.  
  12. #define PP    no_pre,no_post
  13. #define VSTD    var "@r $$;"
  14.  
  15. BOOL_NOT:    PP,VSTD,exec "$$=!($0);" "$$";
  16. BOOL_IS_EQ:    PP,VSTD,exec "$$=$0==$1;" "$$";
  17. BOOL_INT:    PP,VSTD,exec "$$=(INT)$0;" "$$";
  18.  
  19. #endif
  20.